-
Notifications
You must be signed in to change notification settings - Fork 0
[kernel-845] add skills: kernel-sdks for TS and Python #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
KERNEL-845 github.com/kernel/skills
Create a skills repo for installing useful skills for our CLI and SDKs that you can load into popular coding agents Background:
Goal:
Prior art:
Desired flow in Claude Code:
Desired flow for other coding agents:
Some acceptacne tests:
|
9bbb59c to
6d32445
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
| }, | ||
| browser: { cdp: kernelBrowser.cdp_ws_url }, | ||
| narrate: true, | ||
| }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Browser resource leak if startBrowserAgent fails
Medium Severity
The startBrowserAgent() call is placed outside the try block, after kernel.browsers.create(). If startBrowserAgent() fails (network error, invalid API key, etc.), the finally block never executes and the created browser resource leaks. Other examples in this file (Stagehand, CDP Connection, Auto-CAPTCHA) correctly place all code after browser creation inside the try block to ensure cleanup.
Note
Introduces a new
kernel-sdksskill bundle for SDK-based browser automation alongside the existing CLI skills.kernel-sdkstomarketplace.jsonand README install/manual stepsplugins/kernel-sdks/.claude-plugin/plugin.jsonkernel-sdksdocumentation:typescript-sdk/SKILL.mdandpython-sdk/SKILL.mdkernel-cliandkernel-sdksWritten by Cursor Bugbot for commit f9920eb. This will update automatically on new commits. Configure here.